home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-01-28 | 403 b | 17 lines | [TEXT/ToyS] |
- tell application "JUNO Librarian"
- activate -- if needed
- set x to Parameter 16 of Window "Sample"
- set y to (round (x ÷ 16) rounding down)
- set y to y * 16
- set z to x - y -- DCO range, PWM on/off
- set y to (round (y ÷ 32) rounding down)
- set y to y * 32
- set x to y + z
-
- -- select 1 of 2
- set x to x + 0 -- TRI OFF
- -- set x to x + 16 -- TRI ON
-
- copy x to Parameter 16 of Window "Sample"
- end tell
-